a {
        color: #004aad;
        text-decoration: underline;
    }
    a:hover,
    a:focus {
        color: #6da7da;
        text-decoration: bold;
    }
    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }
    body {
        color: #ffffff;
        font-family: 'Moderustic', sans-serif;
        background-image: linear-gradient(-90deg, #004aad, #0097b2, #004aad);
    }
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: #ffffff;
        color: #023563;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .btn {
        color: white;
        background-color: #004aad;
        padding: 15px;
        margin: 10px;
        border-radius: 16px;
        font-weight: bolder;
    }
    .hero-section {
        background-image: linear-gradient(-90deg, #004aad, #0097b2, #004aad);
        padding: 50px 0;
        text-align: center;
        color: white;
    }
    .hero-section h1 {
        font-size: 4rem;
        font-weight: bolder;
        margin-bottom: 20px;
    }
    .hero-section p {
        font-size: 1.2rem;
        color: #cbe7f9;
    }
    .services-section {
        background-color: #023563;
        padding: 80px 0;
        color: white;
    }
    .services-section h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5rem;
        font-weight: bold;
    }
    .services-section .btn {
        text-align: center;
    }
    .service-card {
        border: none;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
        padding: 20px;
    }
    .card-title {
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .card-subtitle {
        text-align: center;
        margin-bottom: 10px;
    }
    .about-section {
        background-image: linear-gradient(-90deg, #004aad, #0097b2, #004aad);
        padding: 100px 0;
        text-align: center;
        color: white;
    }
    .about-section a {
        color: #bce9f1;
    }
    .cta-section {
        background-color: #023563;
        color: #ffffff;
        padding: 100px 0;
        text-align: center;
    }
    .cta-section a {
        color: #bce9f1;
    }
    .footer {
        background-color: #ffffff;
        color: #023563;
        padding: 20px 0;
        text-align: center;
    }